*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  background-color: Black;
}
body{
  overflow-x: hidden; /* ボディ全体での横スクロールを禁止 */
}
/***トップpursuing ideal sound***/


/* ===== 全体 ===== */
.privacy-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 60px;
  color: #eee;
  font-family: 'Inter', sans-serif;
}

/* タイトル */
.privacy-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  letter-spacing: 2px;
  position: relative;
}

/* タイトル下ライン */
.privacy-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  
  margin: 15px auto 0;
}

/* セクション */
.privacy-section {
  margin-bottom: 40px;
  padding: 20px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}



/* 見出し */
.privacy-section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  padding-left: 12px;
}

/* 左ライン */
.privacy-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 70%;
  width: 3px;
  background: linear-gradient(#00ffff, transparent);
}

/* テキスト */
.privacy-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
  margin: 6px 0;
}

/* 箇条書きっぽく */
.privacy-section p::before {
  content: "";
}

/* リストっぽく整える */
.privacy-section p:has(+ p) {
  margin-bottom: 4px;
}

/* 禁止事項の見やすさUP */
.privacy-section p:contains("-") {
  color: #ccc;
}








.hero{
  background: #000;
  width: 100%;
  height: 200px;
  margin-top: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("aboutimage/about.webp") center/cover no-repeat;
}
.hero-main{
  display: inline-block; /* ←これが重要 */
}
.hero-content{
  display: inline-block; /* ←これ重要（幅を文字に合わせる） */
}
/* テキスト */
.hero-text{
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 5vw, 30px); /* ←自動レスポンシブ */
  font-weight: 50;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  margin-top: 20px;
 transform: translateY(10px);
 animation: fadeUp 1s ease forwards;
}
/* ライン（文字幅に一致） */
/* サブテキスト */
.hero-sub{
  color: #ccc;
  font-size: clamp(12px, 2vw, 16px); /* 小さめ */
  font-family: 'Inter', sans-serif; /* ←同じフォント */
  font-weight: 200;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-top: 18px;
   text-align: center;

  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s; /* ←少し遅れて出る */
}
.hero-line{
  width: 100%;
  height: 0.5px;
  background: #d4af37;
  margin-top: 1px;
  transform: scaleX(0); /* ←中央から広がる準備 */
transform-origin: center;
animation: lineGrow 0.8s ease forwards;
animation-delay: 0.9s; /* ←テキストの後に出す */
}
/* テキストふわっと */
@keyframes fadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
/* ライン中央から伸びる */
@keyframes lineGrow{
  to{
    transform: scaleX(1);
  }
}
.credit {
  text-align: right;
  font-size: 12px; /* 小さめ */
  margin-top: 10px;
  color: white;
}

.credit a {
  text-decoration: none;
  color: #3b82f6;; /* 親の色をそのまま使う */
}

.credit a:hover {

  opacity: 0.7; /* ちょいフェード */
}
/***pursuing ideal sound***/

/* ===== セクション ===== */
.concept{
  background: #Black;
  color: #fff;
  padding:70px 0;
  text-align: center;
  overflow: hidden; /* はみ出し防止 */
  position: relative; /* ←これ必須 */
  z-index: 1;
  background: url("aboutimage/about.jpg") center/contain no-repeat;
  background-size: 100% auto;


}
/* 右側の薄い画像 */

/* 表示状態 */
.concept.show-image::after{
  opacity: 0.4;
  transform: translateX(0);
}
/* 表示 */
.concept.show::after{
  opacity: 0.4;
  transform: translateX(0);
}
.concept-inner{
  max-width: 500px;
  margin: 0 auto;
   text-align: center;
   z-index: 2;


}

/* ===== 各行 ===== */
.line{
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(10px, 1.5vw, 16px);
  line-height: 1.3;
  letter-spacing: 1px;
  margin: 12px 0;
transition: all 0.8s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* 強調部分 */
.strong{
  font-size: clamp(16px, 2.5vw, 22px);
  letter-spacing: 2px;
  margin-top: 15px;

  transition: all 1s ease;

}

/* ===== アニメーション発火 ===== */
.concept.show .line{
  animation: fadeUp 0.8s ease forwards;
}

/* 遅延（順番） */
.concept.show .line1{ animation-delay: 0.2s; }
.concept.show .line2{ animation-delay: 0.6s; }
.concept.show .line3{ animation-delay: 1.0s; }
.concept.show .line4{ animation-delay: 1.5s; }
.concept.show .line5{ animation-delay: 2.0s; }
.concept.show .line6{ animation-delay: 2.6s; }
.concept.show .line7{ animation-delay: 3.2s; }

/* ===== アニメーション ===== */
@keyframes fadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* 強調ワードにちょい演出 */
.concept.show .strong{
  animation: fadeUp 0.8s ease forwards, glow 1.5s ease 2.6s forwards;
}

@keyframes glow{
  0%{ text-shadow: none; }
  100%{ text-shadow: 0 0 10px #d4af37; }
}

/* 表示 */
.line.show{
  opacity: 1;
  transform: translateY(0);
}
.strong.show{
  transform: translateY(0) scale(1.08);

  text-shadow:
    0 0 5px  #d4af37,
    0 0 10px #d4af37,
    0 0 20px #d4af37,
    0 0 40px #d4af37;
      animation: glowPulse 2s ease-in-out infinite alternate;
}
@keyframes glowPulse{
  from{
    text-shadow:
      0 0 5px #d4af37,
      0 0 10px #d4af37;
  }
  to{
    text-shadow:
      0 0 20px #d4af37,
      0 0 40px #d4af37,
      0 0 60px #d4af37;
  }
}

.samples{
  padding: 60px 20px;
  background: #000;
}

.sample-container{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.sample-container::-webkit-scrollbar{
  display: none;
}

/* カード */
.card{
  min-width: 180px;
  flex-shrink: 0;
  color: #fff;
  opacity: 0;
  transform: translateX(40px);
transition: all 1s ease;
}
.card.show{
  opacity: 1;
  transform: translateY(0);
}

/* 画像 */
.img-wrap{
  position: relative;
  width: 180px;
  height: 180px;
}

.img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* 再生ボタン */
.play-btn{
  position: absolute;
  top: 10px;
  left: 10px;

  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;

  width: 32px;
  height: 32px;
  border-radius: 50%;

  cursor: pointer;
}

/* ジャンル */
.genre{
  display: block; /* ←ここを変更 */
    width: fit-content;
  padding:3px 8px ;
  border: 1px solid #666;
  color: #aaa;
  letter-spacing: 1px;
  display: inline-flex;
}

.genre{
  margin-top: 20px;
  font-size: 20px;


}

/* タイトル */
.title{
  margin-top: 6px;
  font-size: 14px;
}

/* サブ */
.subtitle{
  font-size: 11px;
  color: #777;

}

.meta{
  margin-left: 0 !important;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ←これが重要 */

}

.feature-section {
  width: 100%;
  background-color: #000;
  padding: 10px 20px; /* 上下の余白で迫力出す */
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-inner {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.feature-text {
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;

  /* ↓ アニメーション初期状態 */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.feature-text.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-cards-section {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}

.feature-cards-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px;
}

.feature-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.feature-card {
  flex: 0 0 65%; /* 少し細くして縦長感 */
  max-width: 320px;
  height: 300px; /* ←縦長のキモ */

  background: rgba(255, 255, 255, 0.08); /* ←透明グレー */
  backdrop-filter: blur(10px); /* ←ガラス感 */
  -webkit-backdrop-filter: blur(10px);

  border-radius: 24px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  scroll-snap-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
}

/* タイトル */
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.feature-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 10px 0 20px;
  line-height: 1.5;
}

.feature-card img {
  width: 50%;
  border-radius: 90px;
  display: block;
  margin: 0 auto; /* ←これで中央 */
}





/* セクション */
.cta-section {
  background: #000;
  padding: 20px 20px;
  text-align: center;
}

/* テキスト */
.cta-text {
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* ボタン */
.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 40px;

  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;

  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;

  transition: 0.3s;

  opacity: 0;
  transform: translateY(40px);
}

/* ホバー */
.cta-button:hover {
  background: #fff;
  color: #000;
}

/* 表示状態 */
.cta-text.show,
.cta-button.show {
  opacity: 1;
  transform: translateY(0);
}




/* セクション */
.faq-section {
  background: #000;
  padding: 50px 20px;
  color: #fff;
}

/* ヘッダー */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* FAQリスト */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* 各項目 */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 質問 */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
}

/* ＋アイコン */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
}

/* 回答 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-bottom: 20px;
}

/* 開いた状態 */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question::after {
  content: "-";
}


/* ===================== */
/* ふわっとアニメーション */
/* ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}







.scroll-container::-webkit-scrollbar{
  display: none;

}
.scroll-container {
  overflow-x: auto; /* .scroll-container内でのみ横スクロールを有効にする */

  scrollbar-width:none;/*スクロールバーを非表示にする*/

  white-space: nowrap; /* 行内要素の折り返しを防ぐ */
  width: calc(100% - 40px); /* 左右に10pxの余白を持たせる */
  display: flex; /* 画像を横に並べるために Flexbox を使用 */
  gap: 15px; /* 画像間の間隔を設定 */
  margin-left:20px;
  margin-top:20px;
　overflow-y: visible;
　padding-top: 15px;
      }

      .image {
          height: 200px;
          width: 200px; /* 幅を親要素に合わせる */
          max-width: 450px; /* 画像の最大幅を設定 */
              max-height: 350px; /* 画像の最大高さを設定 */
border-radius: 10px;
            object-fit: cover;
            transition: transform 0.2s ease, filter 0.2s ease;
             /* 画像のアスペクト比を保ちつつ、コンテナいっぱいに表示 */
             /* ホバーで拡大 */


      }
      /* ホバーで拡大 */

  .image-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  }

  .image-container:active {
    transform: translateY(0) scale(0.98);
  }


/* クリック（押した瞬間） */
.image-container:active .image {
  transform: scale(0.97);
  filter: brightness(0.9);
}
      .image-container{
        border-radius: 12px;
        margin-top: 3px;

        transition: transform 0.2s ease, box-shadow 0.2s ease;


        position: relative;
        display: inline-block;


        width: 200px; /* コンテナの幅を画像に合わせる */
                 height: 200px; /* コンテナの高さを画像に合わせる */
                 max-width: 450px; /* 最大幅を画像に合わせる */
                 max-height: 350px; /* 最大高さを画像に合わせる */

      }


.genretext{
  margin-left: 20px;
  margin-right: 20px;
  color:#999;
  margin-top:5px ;

  font-weight: 200;
}
.description2{
  color: #999;
  font-weight: 200;
  font-size: 13px;
}
.newsample{
  margin-left: 20px;
  font-size: 20px;
  margin-top: 30px;
  font-weight: normal;
}
.catch{
  margin-top: 45px;
}
.catch img{
  width: 100%;
  display: block;
  height: auto;
}
.shape{

  font-size: 19px;
  font-weight: normal;

}

.free{
  font-size: 15px;
  font-weight:lighter;

}

.butto{
  background-color: blue;
  border-radius: 45px;
  padding:10px ;
  margin-top: px;
  width:40%;
  min-width: 180px;

  font-size: 20px;
  color: #fff;
}
nav{
  display: block;
  display: flex;
  justify-content:space-between ;
  align-items: center;
  min-height: 8vh;
  background-color: white;

}
.mainpage{
  font-family: 'Nunito', sans-serif;
  margin-top: 60px;
  text-align: center;
  font-size: 20px;
}
.border{
  border-top: 1px solid #ddd;
  margin-top: 35px;
  margin-right: 20px;
  margin-left:20px;
}
.img{
  max-width: 50%;
  width: 300px;
  height:200px;
  margin-top: 150px;

  margin:60px 20px;
}
.explanation{
  width: 28%;
  float: right;
  margin-top: 20px;
  margin-right: 2%;
  color: white;
}
.categorydocument{
  display: flex;
  flex-direction: column;
}
.list{
background-color: #dddddd;
height: 300px;
margin: 20px;
}
.button{
  background-color: blue;
  border-radius: 5px;
  padding: 4px 20px;
  margin-top: 30px;
  width:30%;
  min-width: 150px;
  margin-left: 20px;

  font-size: 20px;
  color: #fff;
}

.word{
  font-size: 25px;
  color: #fff;
  margin-top: 30px;
  text-align: center;
  padding-top: 15px;
}

.logo{
  color: Black;
  font-size: 32px;
  font-family: 'Nunito', sans-serif;
  margin-left: 1rem;
  display: flex; /* ロゴとテキストを水平に並べる */
     align-items: center; /* 垂直方向の中央揃え */
     white-space: nowrap;
}

  .logo-img {
  width: 48px !important;
  height: auto !important;
  display: block !important;
  transform: translateY(px);
}

.samplehouse{
  transform: translateX(-7px)translateY(0px);
  font-size: 35px;
font-family: 'Helvetica Neue', sans-serif;

}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 66%;
}

/* リンク */
.nav-links a {
  font-family: 'Nunito', sans-serif;
  color: #777;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  position: relative;
  transition: all 0.3s ease;
}

/* ホバー（色＋ちょい浮き） */
.nav-links a:hover {
  color: #111;
  transform: translateY(-2px);
}

/* 下線アニメーション（←これがメイン） */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #97cdf3;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* li */
.nav-links li {
  list-style: none;
}


.burgger div {
  width: 25px;
  height: 2px;
  background: #000;
  margin: 6px;
  transition: 0.4s;
}
.toggle .line1,
.toggle .line3 {
  background: #fff;
}

.toggle .line2 {
  background: #fff;
}

.body{
  margin: 30px;
}


.head{
  height: 60px;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
}
.header-scrolled nav {

  backdrop-filter: blur(6px);

  box-shadow: 0 6px 20px rgba(0,0,0,0.09); /* ←浮かせる */
   border-radius: 0 0 12px 12px;
}


}
a{
  text-decoration: none;
}

.wrapper{
  max-width: 1600px;
}









su{
  position: absolute;
  z-index: 0;
  left: 0;
  top: 128px;
  width: 100%
  ;
}

body{
  margin-bottom: 0px;
}




a:hover{
  color: #97cdf3
}
a{
  color: #2b2bff;
}

.nav-active{
  transform: translateX(0%)!important;
}

footer {
  background: #000;
  color: #aaa;
  padding: 60px 20px 30px;
  font-family: 'Helvetica Neue', sans-serif;
  margin-top: 0px;
}

/* 上部ロゴエリア */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.footer-top img {
  width: 40px;
  height: 40px;
}

.footer-title {
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 600;
}

/* SNS */
.linksns {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.linksns a {
  color: #aaa;
  font-size: 22px;
  transition: 0.3s;
}

.linksns a:hover {
  color: #00ffff;
  text-shadow: 0 0 8px #00ffff;
}

/* フッターリンク */
.footer-link {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-link a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-link a:hover {
  color: #fff;
}

/* コピーライト */
.corpolation {
  text-align: center;
  font-size: 12px;
  color: #555;
  border-top: 1px solid #222;
  padding-top: 20px;
}

/* ちょいグラデーション演出（上にうっすら） */
footer::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  margin-bottom: 40px;
}
.burgger {
  display: none;
}
/*スマホ画面*/

@media screen and (max-width: 1024px){
 .nav-links{
   width:66%;
 }
 body{
   overflow-x: hidden;
 }
}

@media screen and (max-width: 768px){
 body{
   overflow-x:hidden ;
 }
 /* ===================== */
 /* PC表示（横並び） */
 /* ===================== */

 /* ===================== */
 /* カードセクション共通 */
 /* ===================== */
 .feature-cards-section {
   background: #000;
   padding: 80px 0;
   overflow: hidden;
 }

 .feature-cards-wrapper {
   display: flex;
   gap: 24px;　　


 }

 /* カード */
 .feature-card {
   background: rgba(255, 255, 255, 0.08);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);

   border-radius: 24px;
   padding: 24px;
   border: 1px solid rgba(255,255,255,0.08);

   display: flex;
   flex-direction: column;
 }

 /* タイトル */
 .feature-card h3 {
   font-size: 20px;
   font-weight: 700;
   color: #fff;
 }

 /* 説明文 */
 .feature-card p {
   font-size: 13px;
   color: rgba(255,255,255,0.7);
   margin: 10px 0 20px;
 }

 /* 画像中央 */
 .feature-image {
   display: flex;
   justify-content: center;
 }

 .feature-image img {
   width: 75%;
   border-radius: 16px;
 }

 .burgger {
   display: block;
   z-index: 10000;
   margin-right: 2rem;
   cursor: pointer;
 }



 .nav-links {
   position: fixed;
   right: 0;
   top: 0;
   height: 100vh;
   width: 100%;
　　　animation: none;
   background: rgba(0,0,0,0.95);
   backdrop-filter: blur(10px);

   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 30px;
　　



   opacity: 0;
   z-index: 9999;
 }

 /* 表示状態 */
 .nav-active {
   transform: translateX(0%);
   opacity: 1;
 }

 /* 各リンク */
 .nav-links li {
   list-style: none;
 }

 .nav-links a {
   text-decoration: none;
   color: #fff;
   font-size: 24px;
   letter-spacing: 2px;

   position: relative;
 }

 /* ホバー */
 .nav-links a:hover {
   color: #00ffff;
   text-shadow: 0 0 10px #00ffff;
 }

 .nav-links a::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -5px;
   width: 0%;
   height: 1px;
   background: #00ffff;
   transition: 0.3s;
 }

 .nav-links a:hover::after {
   width: 100%;
 }

}

 /* ===================== */
 /* PC表示 */
 /* ===================== */
 @media (min-width: 768px) {
   .feature-cards-wrapper {
     overflow: visible;
     justify-content: center;
     padding: 0 40px;
   }

   .feature-card {
     flex: 1;
     max-width: 400px;
     height: 320px;
   }

   .feature-dots {
     display: none;
   }
 }


 /* ===================== */
 /* スマホ表示 */
 /* ===================== */
 @media (max-width: 767px) {
   .feature-cards-wrapper {
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     padding: 0 10%;
   }

   .feature-card {
     flex: 0 0 80%;
     scroll-snap-align: center;
     height: 300px;
   }

   .burgger {
     display: block;
     z-index: 10000;
     margin-right: 2rem;
     cursor: pointer;
   }



   .nav-links {
     position: fixed;
     right: 0;
     top: 0;
     height: 100vh;
     width: 100%;
　　　animation: none;
     background: rgba(0,0,0,0.95);
     backdrop-filter: blur(10px);

     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 30px;
　　　pointer-events: none;
visibility: hidden;


     opacity: 0;
     z-index: 9999;
   }

   /* 表示状態 */
   .nav-active {
     transform: translateX(0%);
     opacity: 1;
     pointer-events: auto;
     visibility: visible;
   }

   /* 各リンク */
   .nav-links li {
     list-style: none;
   }

   .nav-links a {
     text-decoration: none;
     color: #fff;
     font-size: 24px;
     letter-spacing: 2px;

     position: relative;
   }

   /* ホバー */
   .nav-links a:hover {
     color: #00ffff;
     text-shadow: 0 0 10px #00ffff;
   }

   .nav-links a::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -5px;
     width: 0%;
     height: 1px;
     background: #00ffff;
     transition: 0.3s;
   }

   .nav-links a:hover::after {
     width: 100%;
   }


}

 /* ===================== */
 /* ナビ（修正版） */
 /* ===================== */



 /* ハンバーガー */



 /* ===================== */
 /* その他修正 */
 /* ===================== */

 .logo {
   text-align: left;
   white-space: nowrap;
 }

 .logo-img {
   width: 38px !important;
   height: auto !important;
   display: block !important;
 }

 .catch {
   margin-top: 8vh;
 }

 .mainpage {
   margin-top: 55px;
   font-size: 20px;
 }

 .list {
   margin-top: 20px;
 }

 nav {
   min-height: 10vh;
 }

 .genre {
   font-size: 18px;
 }

 .genretext {
   font-size: 12px;
 }

 .category {
   display: block;
   margin-left: 1px;
 }

 .image {
   width: 150px;
   height: 150px;
 }

 .image-container {
   position: relative;
   display: inline-block;
   width: 150px;
   height: 150px;
 }

 .box {
   font-size: 20px;
 }

 .newsample {
   margin-top: 20px;
   font-size: 18px;
 }

 .samplehouse {
   font-size: 26px;
 }

 .word {
   margin-top: 30px;
   padding-top: 15px;
 }

 .corpolation {
   font-size: 10px;
 }

 .footer-link li {
   font-size: 10px;
 }

 footer {
   height: 400px;
 }

 .linksns a {
   font-size: 18px;
   margin-right: 0.4rem;
 }

 .linksns {
   gap: 10px;
 }

 .container {
   width: 100%;
   max-width: 100%;
   padding: 0;
 }

 div.top img {
   margin-top: 100px;
   height: 280px;
 }


 /* ===================== */
 /* ナビリンク共通 */
 /* ===================== */
 .nav-links {
   list-style: none;
 }


 /* ===================== */
 /* アニメーション */
 /* ===================== */


 /* ハンバーガー → × */
 .toggle .line1 {
   transform: rotate(-45deg) translate(-5px,6px);
 }

 .toggle .line2 {
   opacity: 0;
 }

 .toggle .line3 {
   transform: rotate(45deg) translate(-5px,-6px);
 }
